ad71b7a77803354ceff3c4bcdcc8baf8364a24cb,services/sts/systests/basic/src/test/java/org/apache/cxf/systest/sts/rest/STSRESTTest.java,STSRESTTest,testIssueSAML2TokenClaims,#,357

Before Change


        String address = "https://localhost:" + STSPORT + "/SecurityTokenService/token";
        WebClient client = WebClient.create(address, busFile.toString());

        client.type("application/xml").accept("application/xml");
        client.path("saml2.0");
        
        // First check that the role isn't usually in the generated token

After Change


        String address = "https://localhost:" + STSPORT + "/SecurityTokenService/token";
        WebClient client = WebClient.create(address, busFile.toString());

        client.accept("application/xml");
        client.path("saml2.0");
        
        // First check that the role isn't usually in the generated token